home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / dcpp / save / DMakefile.2 < prev    next >
Text File  |  1993-01-17  |  773b  |  28 lines

  1.  
  2. #   DMakefile.2
  3. #
  4. #  (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  5. #  CONFIDENTIAL, This is unpublished proprietary source code owned by Obvious Implementations Corp.
  6. #  This material contains trade secrets of Obvious Implementations Corp.
  7.  
  8. OD= dtmp:comp2/cpp/
  9. EXE= dcc:bin/amiga/bin2/xc_dcpp
  10. CFLAGS= -ms -r -I$(OD) -Isrc:comp/c1 -DDEBUG
  11. PROTOS= $(OD)protos.h
  12.  
  13. CCPSRCS= main.c sym.c include.c direct.c define.c cpp.c cexp.c subs.c precomp.c asubs.a
  14. CCPOBJS = $(CCPSRCS:"*.c":"$(OD)*.o") $(CCPSRCS:"*.a":"$(OD)*.o")
  15.  
  16. all: $(PROTOS) $(EXE)
  17.  
  18. $(EXE) : $(CCPOBJS)
  19.     lc_dcc %(right) -o %(left) $(CFLAGS)
  20.  
  21. $(CCPOBJS) : $(CCPSRCS)
  22.     lc_dcc %(right) -o %(left) $(CFLAGS) -c
  23.  
  24. $(PROTOS) : $(CCPSRCS)
  25.     -delete %(left)
  26.     xc_makeproto -o%(left) %(right)
  27.  
  28.